home *** CD-ROM | disk | FTP | other *** search
- /* ----------------------------------------------------------------------
- cimon - a UNIX command line client for the fli4l imon daemon.
-
- Public domain, 2001-2002, Rene Herman <rene.herman@mail.com>
- ---------------------------------------------------------------------- */
-
- /* util.c */
- const char *herrorstr(int);
-
- /* exit.c */
- extern const char *program_name;
-
- void exit_error(const char * const, ...);
- void exit_errno(const char * const);
- void exit_usage(const char * const);
-
- /* imon.c */
- #define IMON_PORT 5000
-
- extern unsigned short port;
- extern const char *password;
-
- void imon_open(const char * const);
- void imon_putc(const char);
- void imon_puts(const char *);
- void imon_quit(void);
-